
The DTE routine tweaked so it'll work for the US version
0F/FAA6:	859E    	STA $9E
0F/FAA8:	48      	PHA
0F/FAA9:	8A      	TXA
0F/FAAA:	48      	PHA
0F/FAAB:	98      	TYA
0F/FAAC:	48      	PHA
0F/FAAD:	A59E    	LDA $9E
0F/FAAF:	C97A    	CMP #$7A       (are we beyond the DTE range?)
0F/FAB1:	B010    	BCS $FAC3      (branch if so)
0F/FAB3:	38      	SEC
0F/FAB4:	E91A    	SBC #$1A       (make DTE zero-based)
0F/FAB6:	AA      	TAX            (now the DTE index)
0F/FAB7:	48      	PHA            (save our index, we'll need it again)
0F/FAB8:	BDA0F0  	LDA $F0A0,X    (load from DTE table 1)
0F/FABB:	20EFFA  	JSR $FAEF      (draw the letter)
0F/FABE:	68      	PLA            (our DTE index again)
0F/FABF:	AA      	TAX
0F/FAC0:	BD50F0  	LDA $F050,X    (load from DTE table 2)
0F/FAC3:	20EFFA  	JSR $FAEF      (draw the letter)
0F/FAC6:	68      	PLA
0F/FAC7:	A8      	TAY
0F/FAC8:	68      	PLA
0F/FAC9:	AA      	TAX
0F/FACA:	68      	PLA
0F/FACB:	60      	RTS

0F/FACC - 0F/FAEF is now a converted sea of FF

0F/FAEF:	A2FF    	LDX #$FF
